Conditions | 1 |
Total Lines | 6 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import {MigrationInterface, QueryRunner} from "typeorm"; |
||
12 | |||
13 | public async down(queryRunner: QueryRunner): Promise<any> { |
||
14 | await queryRunner.query(`ALTER TABLE "pay_stub" DROP CONSTRAINT "FK_e70c3a9343494ab691a33302fe5"`, undefined); |
||
15 | await queryRunner.query(`ALTER TABLE "pay_stub" DROP CONSTRAINT "FK_252d4cbbedfa1f1fb66ada01a07"`, undefined); |
||
16 | await queryRunner.query(`DROP TABLE "pay_stub"`, undefined); |
||
17 | await queryRunner.query(`DROP TABLE "file"`, undefined); |
||
18 | } |
||
21 |